home *** CD-ROM | disk | FTP | other *** search
/ BigMax 23 / BigMax nº 23.iso / aplicat / cock98 / cock98pr.exe / _SETUP.1 / Macro.Hpt < prev    next >
Text File  |  1996-11-26  |  4KB  |  203 lines

  1. False
  2. False
  3. False
  4. False
  5. Arial
  6.  11 
  7.  16711680 
  8. False
  9. True
  10. False
  11. False
  12. Arial
  13.  12 
  14.  16711680 
  15. False
  16. True
  17. False
  18. False
  19. Times New Roman
  20.  20 
  21.  255 
  22.  12632256 
  23. C:\MULTI\HELP\cocktail.BMP
  24. ###Command
  25.  
  26.  
  27.  Commanding can freely change the execution order by using many 
  28. commands.  The concept of commanding is similar to the concept of 
  29. programming, and anybody can use these commands.
  30.  
  31. Summary of the Commands
  32.  
  33.  The commands are similar to ordinary basic commands, and use of 
  34. variables is possible, but, if the command type does not fit, it is ignored.
  35.  The Virtual Run command (the contents run by a command and printed 
  36. can be learned easily) runs the command virtually and searches an error of 
  37. the command.
  38.     
  39.  ##RUN|gRUN|
  40.  ##LOOP|gLOOP|
  41.  ##GO|gGO|
  42.  ##IF|gIF|
  43.  ##HIDE|gHIDE|
  44.  ##END|gEND|
  45.  ##VALUE|gVALUE|
  46.  
  47.  
  48. ###RUN
  49.  
  50.  
  51.  runs the numbered file.
  52.  
  53.  ##How@to@use
  54.   RUN N1 - N2, ...
  55.  ##Explanation
  56.   N1 - N2:  Run from N1 to N2 (The reversal order is possible)
  57.   N:  Random executable number
  58.   ' , ': Use to separate the next executable number.
  59.  ##Example
  60.   RUN 1-2, 3, 2-1
  61.  ##Result
  62.   Run order becomes 1 -> 2 -> 3 -> 2 -> 1
  63.  
  64.  ##HOME|gCommand|
  65.  
  66. ###LOOP
  67.  
  68.  
  69.  specifies and loops the range of the executable number.
  70.  
  71.  ##How@to@use
  72.   STARTLOOP (No. of Loops)
  73.   N1 - N5
  74.   ENDLOOP
  75.  ##Explanation
  76.   Loops N1-N5 as many as the [no. of loops].     
  77.   If the [no. of loops] is 0 or negative, N1-N5 is not     
  78.   run. (Multiple loops are possible.)
  79.  ##Example
  80.   STARTLOOP 5
  81.   RUN 3-4
  82.   ENDLOOP
  83.  ##Result
  84.   Executable numbers 3 and 4 are looped 5 times.
  85.  
  86.  ##HOME|gCommand|
  87.  
  88. ###GO
  89.  
  90.  
  91.  A command is run for one row at a time in the order, but the other          
  92. row can be run first by using the 'GO' command.  In other words,          
  93. by skipping to the row with a caption, a command is run from the       
  94. following row.
  95.  
  96.  ##How@to@use
  97.   GO Caption
  98.  ##Explanation
  99.   Caption: is written in the beginning of the row because this 
  100.   becomes the basic to be moved by the 'GO' command.  
  101.   ':' is attached to the caption.
  102.  ##Example
  103.   GO Caption 2:
  104.   RUN Section 1
  105.   Caption 2:
  106.   RUN Section 2
  107.  ##Result
  108.   The 'executable section1' is not run, and instead         
  109.   running starts from section 2 directly.  Therefore, only     
  110.   the 'executable section 2' is run.
  111.  
  112.  ##HOME|gCommand|
  113.  
  114. ###IF
  115.  
  116.  
  117.  IF statement judges a condition and is run when true and false. This 
  118. also available in the Question Box in Special Function of Numbering 
  119. Wizard.
  120.  
  121.  ##How@to@use:  
  122.   IF value1=0 
  123.   THEN value1=1
  124.   ELSE value1=2
  125.  ##Explanation
  126.   IF:  Judging condition statement.
  127.   THEN:  statement to run when true.
  128.   ELSE:  statement to run when false.
  129.  ##Example
  130.   IF value1=5 
  131.   THEN value1=value1+1
  132.   ELSE value1=value1-1
  133.   RUN value1
  134.  ##Result
  135.   If the value of value1 is 5, increase it by 1, if not 5,     
  136.   decrease the value of value1 by 1. Then, run the number 
  137.   equivalent to value1.
  138.  
  139.  ##HOME|gCommand|
  140.  
  141. ###HIDE
  142.  
  143.  
  144.  stops and makes the number disappear from the window even     
  145. while it is being run.
  146.  
  147.  ##How@to@use:  
  148.   HIDE N
  149.  ##Explanation
  150.   N: Executable number
  151.  ##Example
  152.   RUN 1
  153.   RUN 2
  154.   HIDE 2
  155.  ##Result
  156.   After executable numbers 1 and 2 are run, the executable 
  157.   number 1 disappears from the window.
  158.  
  159.  ##HOME|gCommand|
  160.  
  161. ###END
  162.  
  163.  
  164.  exits execution of the MMP file generated by the Multimedia Studio.
  165.  
  166.  ##How@to@use
  167.   END
  168.  ##Example
  169.   RUN 1-5
  170.   END
  171.  ##Result
  172.   The 1-5 section is run and then exits.
  173.  
  174.  ##HOME|gCommand|
  175.  
  176. ###VALUE
  177.  
  178.  
  179.  Value is the place memorizing numbers.  VALUE is used together     
  180.  with RUN and IF and commands the memorized number.
  181.  
  182.  ##How@to@use
  183.   VALUEN=VALUEN1(or number) operator VALUEN2
  184.  ##Explanation
  185.   N, N1, N2: separates variables.
  186.   "Operator": Four operations (+, -, * and /) can be used.
  187.   '=': memorizes the operation result in VALUEN    
  188.   The original value of the variable is 0.
  189.  ##Example
  190.   VALUE1=16
  191.   VALUE2=2
  192.   VALUE3=VALUE1/VALUE2
  193.   RUN VALUE3
  194.  ##Result
  195.   16 is memorized in VALUE1, and 2 in VALUE2.  As result of 
  196.   dividing VALUE1 by VALUE2, 5 is memorized in VALUE3. 
  197.   (The decimal place is abandoned.)
  198.   Example 1 of Facilitation of All Commands Condition:  
  199.   The original value of VALUE1 is conditioned to be 9.
  200.  
  201.  ##HOME|gCommand|
  202.  
  203.